body, html{
  height: 100%;
  width: 100%;
}
.navbar{
  padding: 0;
}
.card{
  background-color: #edcd7ee9 ;
  max-width: 100%;
}
  /* Corpo della pagina */
body {
  font-family:"Caveat", cursive;
  background-color: #eeba36e9;
}
  /* Stile per il testo */
p{
  font-family:"Caveat", cursive;
  font-size: 18px; color: #333;
}
h1{
  font-family:"Caveat", cursive;
  text-align: center;
}
h2{
  font-family:"Caveat", cursive;
  text-align: center;
}
h5{
  font-family:"Caveat", cursive;
  font-size: 18px; color: #333;
}
.carousel-item > .active {
  height: 100px;
  object-fit: cover;
  width: 100%;
}
.carousel-inner{
  max-height: 930px;
  background-size:contain;
  background-position: center;
  background-attachment: fixed; 
}
.box{
  width: 100%;
  padding: 20px;
  border: 2px solid #464404;
  background-color: #edcd7ee9;
  font-family:"Caveat", cursive;
  font-size: 16px;
  color: #0f0f0e;
  border-radius: 8px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: calc(250px * 3 + 40px); 
  margin: 0 auto;
}


.polaroid {
  width: 250px;
  height: 300px;
  background-color: white;
  padding: 10px 10px 30px 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}


.polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaroid:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .polaroid {
    width: 45%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .polaroid {
    width: 90%;
    height: auto;
  }
}

